home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / site-packages / psyco / classes.py < prev    next >
Text File  |  2006-03-29  |  2KB  |  54 lines

  1. ###########################################################################
  2. #  Psyco class support module.
  3. #   Copyright (C) 2001-2002  Armin Rigo et.al.
  4.  
  5. """Psyco class support module.
  6.  
  7. 'psyco.classes.psyobj' is an alternate Psyco-optimized root for classes.
  8. Any class inheriting from it or using the metaclass '__metaclass__' might
  9. get optimized specifically for Psyco. It is equivalent to call
  10. psyco.bind() on the class object after its creation.
  11.  
  12. Note that this module has no effect with Python version 2.1 or earlier.
  13.  
  14. Importing everything from psyco.classes in a module will import the
  15. '__metaclass__' name, so all classes defined after a
  16.  
  17.        from psyco.classes import *
  18.  
  19. will automatically use the Psyco-optimized metaclass.
  20. """
  21. ###########################################################################
  22.  
  23. __all__ = ['psyobj', 'psymetaclass', '__metaclass__']
  24.  
  25.  
  26. # Python version check
  27. try:
  28.     from _psyco import compacttype
  29. except ImportError:
  30.     class psyobj:        # compatilibity
  31.         pass
  32.     psymetaclass = None
  33. else:
  34.     # version >= 2.2 only
  35.  
  36.     import core
  37.     from types import FunctionType
  38.  
  39.     class psymetaclass(compacttype):
  40.         "Psyco-optimized meta-class. Turns all methods into Psyco proxies."
  41.  
  42.         def __new__(cls, name, bases, dict):
  43.             bindlist = dict.get('__psyco__bind__')
  44.             if bindlist is None:
  45.                 bindlist = [key for key, value in dict.items()
  46.                             if isinstance(value, FunctionType)]
  47.             for attr in bindlist:
  48.                 dict[attr] = core.proxy(dict[attr])
  49.             return super(psymetaclass, cls).__new__(cls, name, bases, dict)
  50.     
  51.     psyobj = psymetaclass("psyobj", (), {})
  52. __metaclass__ = psymetaclass
  53.